crypto/tls.certificateMsg.certificates (field)

13 uses

	crypto/tls (current package)
		handshake_client.go#L669: 	if !ok || len(certMsg.certificates) == 0 {
		handshake_client.go#L704: 		if err := c.verifyServerCertificate(certMsg.certificates); err != nil {
		handshake_client.go#L714: 		if !bytes.Equal(c.peerCertificates[0].Raw, certMsg.certificates[0]) {
		handshake_client.go#L769: 		certMsg.certificates = chainToSend.Certificate
		handshake_messages.go#L1390: 	certificates [][]byte
		handshake_messages.go#L1395: 	for _, slice := range m.certificates {
		handshake_messages.go#L1399: 	length := 3 + 3*len(m.certificates) + i
		handshake_messages.go#L1412: 	for _, slice := range m.certificates {
		handshake_messages.go#L1448: 	m.certificates = make([][]byte, numCerts)
		handshake_messages.go#L1452: 		m.certificates[i] = d[3 : 3+certLen]
		handshake_server.go#L618: 	certMsg.certificates = hs.cert.Certificate
		handshake_server.go#L699: 			Certificate: certMsg.certificates,
		handshake_server.go#L703: 		if len(certMsg.certificates) != 0 {